home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / Source / HyperCuber 2.0 Source / CHyperCuberApp.h < prev    next >
Encoding:
Text File  |  1994-05-02  |  807 b   |  36 lines  |  [TEXT/KAHL]

  1. //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2. //| CHyperCuberApp.h
  3. //|
  4. //| This file contains the interface to the HyperCuber Application class.
  5. //|___________________________________________________________________________
  6.  
  7. #define    _H_CHyperCuberApp        /* Include this file only once */
  8. #include <CApplication.h>
  9.  
  10. CLASS CControlsDirector;
  11. CLASS CHyperCuberDoc;
  12.  
  13. struct CHyperCuberApp : CApplication {
  14.  
  15.     CHyperCuberDoc        *itsDocument;        //  The document (which controls the graphics window)
  16.  
  17. public:
  18.  
  19.     void    IHyperCuberApp(void);
  20.     void    SetUpFileParameters(void);
  21.  
  22.     void    InspectSystem( void);
  23.  
  24.     void    UpdateMenus(void); 
  25.  
  26.     void    MakeDesktop(void);
  27.  
  28.     void    DoCommand(long theCommand);
  29.  
  30.     void    Exit(void);
  31.  
  32.     void    CreateDocument(void);
  33.     void    OpenDocument(SFReply *macSFReply);
  34.  
  35. };
  36.